body {
    color: #5f5f5f;
}
/*----------------------------    头部    ----------------------------*/
.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar.bg-light {
    background-color: #ffffff !important;
}

.transparentHeader {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 99;
}

header .search-box {
    position: fixed;
    width: 100%;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    top: 0;
    background: #fff;
    left: 0;
    z-index: 999999;
    padding: 30px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

header .search-box.show {
    opacity: 1;
    visibility: visible;
}

header .search-box form {
    display: inline-block;
    width: 90%;
    vertical-align: middle;
}

header .search-box form input {
    width: 100%;
    border: none;
    font-size: 18px;
    padding-left: 40px;
    font-weight: 500;
    color: rgba(5, 117, 255, 0.7);
}

header .search-box form input:focus {
    outline: none;
}

header .search-box form input {
    cursor: pointer;
}

header .search-box form input::-webkit-input-placeholder {
    /* Edge */
    color: rgba(5, 117, 255, 0.7);
}

header .search-box form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(5, 117, 255, 0.7);
}

header .search-box form input::placeholder {
    color: rgba(5, 117, 255, 0.7);
}

header .search-box .search_icon {
    color: rgba(5, 117, 255, 0.7);
    font-size: 20px;
    vertical-align: middle;
}

header .search-box .close_icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #0f73ee;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

@media (min-width: 992px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

.dropdown .dropdown-menu {
    border: none;
    width: 200px;
    padding: 0 10px;
    border-radius: 0;
}

.dropdown-item {
    padding: 10px 0;
    background-color: transparent;
}

.dropdown-item:focus,.dropdown-item:hover {
    background-color: transparent;
}

@keyframes slideIn {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(-8px);
        opacity: 1;
    }

    0% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar-brand {
    margin-right: 50px;
}

.navbar.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: stickyTransition;
    animation-name: stickyTransition;
    z-index: 99999;
}

.navbar-light .navbar-nav .nav-link {
    color: #abaeb1;
    font-size: 14px;
    font-weight: 500;
}
.navbar-light .btn-search {
    color: #abaeb1;
}
.navbar-light .btn-search:hover {
    color: #ffffff;
}

.nav-item.dropdown .dropdown-item {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #5f5f5f;
}

.sticky .navbar-light .navbar-nav .nav-link,.sticky .navbar-light .btn-search  {
    color: #5f5f5f;
}

.nav-item.dropdown .dropdown-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #00b371;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    visibility: hidden;
    transition: all .3s;
}

.nav-item.dropdown .dropdown-item:hover:before,.nav-item.dropdown .dropdown-item.active:before {
    transform: translateY(-50%) scale(1);
    visibility: visible;
}

.navbar-light .navbar-nav .nav-link {
    margin: 0 15px;
}

.navbar-light .navbar-nav .nav-item {
    position: relative;
}

.navbar-light .navbar-nav .nav-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #00b371;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    visibility: hidden;
    transition: all .3s;
}

.navbar-light .navbar-nav .nav-item.active:before {
    transform: translateY(-50%) scale(1);
    visibility: visible;
}

.navbar-light .navbar-nav .active>.nav-link {
    color: #ffffff;
    font-weight: 600;
}

.sticky .navbar-light .navbar-nav .active>.nav-link {
    color: #5f5f5f;
    font-weight: 600;
}

.megamenu {
    position: static;
}

.megamenu .dropdown-menu {
    background: none;
    border: none;
    width: 100%;
}

.navbar-light .navbar-nav .nav-link:hover,.dropdown-item:hover {
    color: #ffffff;
}

.sticky .navbar-light .navbar-nav .nav-link:hover,.sticky .navbar-light .btn-search:hover {
    color: #232024;
}

.dropdown-item.active {
    background-color: #fff;
    color: #0f73ee;
}

@-webkit-keyframes stickyTransition {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes stickyTransition {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@media only screen and (min-width: 992px) {
    .navbar-nav {
        align-items: center;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 30px 2px;
        position: relative;
        transition: all .3s;
    }

    .navbar-light .navbar-nav .btn {
        margin-left: 20px;
    }

    a.line-animation {
        position: relative;
        left: 0;
        transition: all .3s;
    }

    a.line-animation::before {
        content: '';
        width: 15px;
        height: 2px;
        background-color: #0f73ee;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) scale(0);
        transition: all .3s;
    }

    a.line-animation:hover {
        left: 5px;
    }

    a.line-animation:hover::before {
        transform: translateY(-50%) scale(1);
        left: -18px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        -webkit-animation-name: slideIn;
        animation-name: slideIn;
    }

    .dropdown .dropdown-menu {
        box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    }

    .transparentHeader .navbar {
        background-color: transparent !important;
    }

    .navbar-light .navbar-nav .nav-item:hover:before {
        transform: translateY(-50%) scale(1);
        visibility: visible;
    }
}
.transparentHeader.sticky {
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    z-index: 990;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    background: rgba(255, 255, 255, 0.96);
    padding-bottom: 0;
}
/*----------------------------    头部结束   ----------------------------*/


/*----------------------------    banner 开始   ----------------------------*/
.banner {
    height: 750px;
}
.slider_bg_2 {
    background-image: url(https://technext.github.io/busicol/img/banner/banner2.png);
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.overlay2 {
    position: relative;
    z-index: 0;
}
.overlay2::before {
    position: absolute;
    content: "";
    background-color: #2C2C2C;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}
.banner .single_slider .slider_text h3 {
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 47px;
}
.banner .single_slider .slider_text p {
    font-size: 18px;
    font-weight: 400;
    color: #D5D5D5;
    margin-bottom: 24px;
    margin-top: 10px;
}
.owl-carousel:hover .owl-nav div {
    opacity: 1;
    visibility: visible;
}

.owl-carousel .owl-nav div.owl-next {
    left: auto;
    right: 150px;
}
.owl-carousel .owl-nav div {
    background: transparent;
    height: 50px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 50px;
    color: #fff;
    background-color: transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 15px;
    line-height: 50px;
    border: 1px solid #787878;
    left: 150px;
}
.owl-next .fa-angle-right:before,.owl-prev .fa-angle-left:before {
    font-size: 1.5rem;
    line-height: 1.5rem;
}
.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}
.owl-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: -2rem;
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
    background: #00b371;
}
/*----------------------------    banner 结束   ----------------------------*/


/*----------------------------    服务 开始   ----------------------------*/
.itemTitle>p {
    position: relative;
    font-size: 16px;
}
.itemTitle>p:before {
    content: "";
    position: absolute;
    width: 80px !important;
    left: 0;
    bottom: -20px;
    height: 2px;
    background-color: #00b371;
}
.itemTitle>p:before {
    left: 50%;
    transform: translateX(-50%);
}
.service_section .service_item {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all .3s;
}
.service_icon_wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.service_item .service_icon {
    width: 70px;
}
.service_item a {color:#5f5f5f;}
@media only screen and (min-width: 992px) {
    a.line-animation::before {
        background-color: #112957;
    }
}
/*----------------------------    服务 结束   ----------------------------*/

/*----------------------------    案例展示 开始   ----------------------------*/
.portfolio_section .sub-heading:before,.news_section .sub-heading:before {
    content: "";
    position: absolute;
    width: 80px !important;
    left: 0;
    bottom: -20px;
    height: 2px;
    background-color: #00b371;
}
.portfolio_section .sub-heading:before,.news_section .sub-heading:before {
    left: 50%;
    transform: translateX(-50%);
}
.portfolio_section .figure {
    margin-bottom: 30px;
}
/*----------------------------    案例展示 结束   ----------------------------*/

/*新闻中心*/
.blog_post {
    background-color: #fff;
    margin-bottom: 30px;
    border: 1px solid #ebebeb;
    transition: all .3s;
    padding: 10px;
}
.blog_post .blog_info {
    padding: 20px 0;
}
.blog_post .post_title, .blog_post .post_text {
    display: block;
    height: 42px;
    overflow: hidden;
    margin: 0;
}
.blog_post .post_title {
    font-size: 18px;
    color: #5f5f5f;
    font-weight: 600;
    outline: none;
    text-decoration: none !important;
}
.post_text {
    margin-bottom: 10px;
}
.blog_post .post_text {
    color: #777777;
    font-size: 14px;
}
.blog_post .post_link {
    color: #212529;
    font-size: 14px;
    font-weight: 600;
}
.blog_post .blog_comment {
    padding: 10px 0;
    border-top: 1px solid #ebebeb;
    padding-bottom: 0;
}
.blog_post .blog_comment p {
    color: #777777;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

/*底部*/
.copyright {
    padding: 1rem;
    text-align: center;
    color: #ffffff;
    font-size: 0.8rem;
}
.copyright a {
    color: #ffffff;
}
.footer {
    background-color: #232323;
}
.friendlink a {
    color: #777777;
    margin-left: 10px;
}

#floatbtn {
    width: 50px;
    height: auto;
    position: fixed;
    top: auto;
    right: 50%;
    bottom: 80px;
    left: auto;
    z-index: 80;
    margin-right: -640px;
}
#floatbtn.fixed {
    position: absolute;
    bottom: 279px;
    right: 50%;
}
#floatbtn a {
    position: relative;
    z-index: 90;
    display: block;
    margin-top: 4px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #d5d5d5;
    background-color: #fff;
    border: 1px solid #eee;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#floatbtn a.hover:hover {
    -webkit-transition: background-color 200ms ease-out;
    -moz-transition: background-color 200ms ease-out;
    -o-transition: background-color 200ms ease-out;
    transition: background-color 200ms ease-out;
    background: #dc3545;
    text-decoration: none;
    text-align: center;
    line-height: 20px;
    padding: 5px;
}
#floatbtn a.hover:hover i {
    display: none;
}
#floatbtn a.hover:hover em {
    display: block;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    text-decoration: none;
}
#floatbtn a em {
    display: none;
}
#floatbtn a:hover {
    background: #dc3545;
}
#floatbtn a:hover i {
    color: #fff;
}
#floatbtn a:hover .floatbtn-wrapper {
    display: block;
}
#floatbtn .iconfont {
    display: inline-block;
    font: normal normal normal 14px/1 iconfont;
    font-size: inherit;
}
.floatbtn-wrapper {
    position: absolute;
    right: 59px;
    top: -55px;
    z-index: 120;
    display: none;
    width: 190px;
    height: 212px;
    background-color: #fff;
    border: 1px solid #eee;
}
.floatbtn-wrapper:after {
    content: "";
    position: absolute;
    right: -6px;
    top: 73px;
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid #d5d5d5;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.floatbtn-wrapper .qrcode {
    margin-top: 20px;
    line-height: 1;
}
.floatbtn-wrapper .qrcode img {
    width: 128px;
    height: 128px;
}
.floatbtn-wrapper p {
    font-size: 14px;
    line-height: 20px;
    color: #999;
}
.floatbtn-wrapper p em {
    color: #dd3067;
}
#floatbtn .floatbtn-wrapper2 {
    height: 60px;
    padding: 10px;
    top: 0;
}
#floatbtn .floatbtn-wrapper2 p {
    margin: 0px;
}
#floatbtn .floatbtn-wrapper2:after {
    top: 23px;
}
/*----------------------------    新闻页   ----------------------------*/
.page-cover {
    position: relative;
    background-size: cover;
    background-position: center;
}
.page-cover.darkOverlay:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(33, 33, 33, 0.9);
}
.page-cover .heading {
    font-size: 40px;
    font-weight: 700;
}
.col-center {
    float: none;
    margin-right: auto;
    margin-left: auto;
}
.breadcrumb {
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    border-radius: .25rem;
    display: block;
    background: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb li a {
    color: #dc3545;
}
.breadcrumb li.active, .breadcrumb li a {
    font-size: 18px;
}
.breadcrumb li {
    position: relative;
    display: inline-block;
}
.blog_post:hover {
    border-color: transparent;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.blog_sidebar .box {
    margin-bottom: 30px;
    border: 1px solid #ebebeb;
    padding: 40px 30px;
}
.blog_sidebar .box .heading{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.blog_sidebar .search_box ul li a {
    color: #777777;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.blog_sidebar .search_box ul li a span {
    float: right;
}
.blog_sidebar .post_box .img_area2 {
    width: 60px;
    display: inline-block;
    vertical-align: middle;
}
.blog_sidebar .post_box ul li {
    margin-bottom: 20px;
}
.blog_sidebar .post_box .info_area {
    width: calc(100% - 65px);
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    font-weight: 500;
}
.blog_sidebar .post_box a {
    text-decoration:none;
    display: inline-block;width: 100%;
    color: #828a92;
}
.blog_sidebar .post_box .info_area h2 {
    font-size: 14px;
    color: #777777;
}
.blog_sidebar .post_box .info_area .time {
    font-size: 13px;
    margin-top: 3px;
    margin-bottom: 0;
    color: #828a92;
}
.tag a {
    color: #828a92;
    font-size: 14px;
}
.pagination a {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #333333;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.pagination .active span {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    line-height: 1.25;
    z-index: 3;
    color: #fff;
    background-color: #dc3545;
    border: 1px solid #dee2e6;
}
.pagination .disabled span {
    line-height: 1.25;
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    display: block;
    padding: .5rem .75rem;
    border: 1px solid #dee2e6;
}
@media only screen and (min-width: 992px) {
    .page-cover {
        margin-top: 81px;
    }
}
.archive h1{
    font-size: 1.8rem;
}
.archive img {
    max-width: 100% !important;
    height: auto !important;
}
/*----------------------------    新闻页 / 结束   ----------------------------*/


/*----------------------------    全局统一样式   ----------------------------*/
.blog_sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.va-top {
    vertical-align: top;
}
/*按钮*/
.boxed-btn3 {
    background: #dc3545;
    display: inline-block;
    padding: 14px 17px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff !important;
    text-transform: capitalize;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    letter-spacing: 2px;
}
/*更多按钮*/
.btn-more {
    border: 1px solid #d1d1d1;
    width: 48px;
    height: 48px;
    display: block;
    margin: auto;
    line-height: 46px;
    border-radius: 100%;
    color: #d1d1d1;
}
.btn-more:hover {
    background-color: #dc3545;
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: background-color 1.5s;
}

/*pc 样式*/
.sectionPB {
    padding-bottom: 120px;
}
.sectionPT {
    padding-top: 100px;
}
.bg-color-light {
    background-color: #f6f6f9 !important;
}
.mb60 {
    margin-bottom: 60px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb10 {
    margin-bottom: 10px;
}
.text-color-p{
    color: #777777;
}
.img_area {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 75%;
}
.img_area img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    border: 0;
    object-fit: cover;
}
.img_area2 img {
    width: 100%;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ebebeb;
    outline: 0;
    box-shadow: none;
}
.icon-list span{margin-right: 10px;color: #999;font-size: 14px;}
.article-content img {
    max-width: 100% !important;
}
.figure {
    width: 100%;
}
.figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/*手机端优化*/
@media only screen and (max-width: 992px) {
    .navbar-brand {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
    #wrapper {
        padding-top: 52px;
    }
    .sectionPT {
        padding-top: 40px;
    }
    .sectionPB {
        padding-bottom: 20px;
    }
    .about_section {
        padding-top: 0px;
    }
    #floatbtn {
        right: 20px;
        margin-right:0px;
    }

    #floatbtn .gzh {
        display: none;
    }
    #floatbtn .qqlink {
        display: none;
    }
    .show-peal {
        padding-top: 1rem;
    }
    .archive h1 {
        font-size: 1.5rem;
    }
}